From: Cornelia Huck Date: Thu, 25 Dec 2008 12:39:05 +0000 (+0100) Subject: [S390] cio: Put referernce on correct device after moving. X-Git-Tag: archive/raspbian/4.9.13-1+rpi1~10^2~24873^2~50 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=97166f52fc84c0bc49c7dbba2a26720110acb458;p=linux-4.9.git [S390] cio: Put referernce on correct device after moving. Signed-off-by: Cornelia Huck Signed-off-by: Martin Schwidefsky --- diff --git a/drivers/s390/cio/device.c b/drivers/s390/cio/device.c index fc0c0abd1271..647cbaca298e 100644 --- a/drivers/s390/cio/device.c +++ b/drivers/s390/cio/device.c @@ -875,14 +875,14 @@ void ccw_device_move_to_orphanage(struct work_struct *work) if (replacing_cdev) { sch_attach_disconnected_device(sch, replacing_cdev); /* Release reference from get_disc_ccwdev_by_dev_id() */ - put_device(&cdev->dev); + put_device(&replacing_cdev->dev); return; } replacing_cdev = get_orphaned_ccwdev_by_dev_id(css, &dev_id); if (replacing_cdev) { sch_attach_orphaned_device(sch, replacing_cdev); /* Release reference from get_orphaned_ccwdev_by_dev_id() */ - put_device(&cdev->dev); + put_device(&replacing_cdev->dev); return; } sch_create_and_recog_new_device(sch);